home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSDOSSYS 4.xpl < prev    next >
Text File  |  2001-01-21  |  1KB  |  58 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\10) Boot Menu"
  5. "NAME"="Delay Options"
  6. "VERSION"="3.18"
  7. "OSVERSION"="10101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Key Delay (sec)"
  10. "TEXT 2"="Menu Delay (sec)"
  11. "DESCRIPTION 1"=""Key Delay" controls how long Windows displays the Message "Starting Windows..."."
  12. "DESCRIPTION 2"=""Menu Delay" controls how long the Boot Menu is displayed."
  13. "DESCRIPTION 3"="NOTE: These options only work in Windows 98/ME if you disable the "Display Windows logo while booting" option (General Options)."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18.  
  19.  
  20.  
  21. sF="C:\MSDOS.SYS"
  22. sO="OPTIONS"
  23.  
  24. Sub Plugin_Initialize 
  25.   Call FileSetAttribute(sf,"S-")
  26.   Call FileSetAttribute(sf,"R-")
  27.   Call FileSetAttribute(sf,"H-")
  28.  
  29.   i=IniReadValue(sf,so,"BootDelay")
  30.   Call SetUIElement(1,i)
  31.  
  32.   i=IniReadValue(sf,so,"BootMenuDelay")
  33.   Call SetUIElement(2,i)
  34. End Sub
  35.  
  36. Sub Plugin_CheckData(ElementIndex)
  37. End Sub
  38.  
  39. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  s=GetUIElement(1)
  41.  Call IniWriteValue(sf,so,"BootDelay",s)
  42.  
  43.  s=GetUIElement(2)
  44.  Call IniWriteValue(sf,so,"BootMenuDelay",s)
  45.  
  46.  Restart
  47. End Sub
  48.  
  49.  
  50. Sub Plugin_Terminate 
  51.  Call FileSetAttribute("C:\MSDOS.SYS","S+")
  52.  Call FileSetAttribute("C:\MSDOS.SYS","R+")
  53.  Call FileSetAttribute("C:\MSDOS.SYS","H+")
  54. End Sub
  55.  
  56.  
  57.  
  58.